home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / tsmtp11 / smtpmail.dpr < prev    next >
Text File  |  1996-09-15  |  208b  |  14 lines

  1. program Smtpmail;
  2.  
  3. uses
  4.   Forms,
  5.   Mmail in 'MMAIL.PAS' {MailForm},
  6.   Smtpsu in 'SMTPSU.PAS' {SetupDlg};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TMailForm, MailForm);
  12.   Application.Run;
  13. end.
  14.